home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src_win / WinHTTrack / HTTrackInterface.c < prev    next >
C/C++ Source or Header  |  2005-08-28  |  7KB  |  289 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Interface                                              */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. #include <sys/types.h>
  38. #include <sys/stat.h>
  39.  
  40. #include "htsglobal.h"
  41. #include "htsbase.h"
  42.  
  43. #include "HTTrackInterface.h"
  44.  
  45. // Lecture d'une ligne (peut Ωtre unicode α priori)
  46. int linput(FILE* fp,char* s,int max) {
  47.   int c;
  48.   int j=0;
  49.   do {
  50.     c=fgetc(fp);
  51.     if (c!=EOF) {
  52.       switch(c) {
  53.         case 13: break;  // sauter CR
  54.         case 10: c=-1; break;
  55.         case 9: case 12: break;  // sauter ces caractΦres
  56.         default: s[j++]=(char) c; break;
  57.       }
  58.     }
  59.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  60.   s[j]='\0';
  61.   return j;
  62. }
  63. int linput_trim(FILE* fp,char* s,int max) {
  64.   int rlen=0;
  65.   char* ls=(char*) malloct(max+2);
  66.   s[0]='\0';
  67.   if (ls) {
  68.     char* a;
  69.     // lire ligne
  70.     rlen=linput(fp,ls,max);
  71.     if (rlen) {
  72.       // sauter espaces et tabs en fin
  73.       while( (rlen>0) && ((ls[max(rlen-1,0)]==' ') || (ls[max(rlen-1,0)]=='\t')) )
  74.         ls[--rlen]='\0';
  75.       // sauter espaces en dΘbut
  76.       a=ls;
  77.       while((rlen>0) && ((*a==' ') || (*a=='\t'))) {
  78.         a++;
  79.         rlen--;
  80.       }
  81.       if (rlen>0) {
  82.         memcpy(s,a,rlen);      // can copy \0 chars
  83.         s[rlen]='\0';
  84.       }
  85.     }
  86.     //
  87.     freet(ls);
  88.   }
  89.   return rlen;
  90. }
  91. int linput_cpp(FILE* fp,char* s,int max) {
  92.   int rlen=0;
  93.   s[0]='\0';
  94.   do {
  95.     int ret;
  96.     if (rlen>0)
  97.     if (s[rlen-1]=='\\')
  98.       s[--rlen]='\0';      // couper \ final
  99.     // lire ligne
  100.     ret=linput_trim(fp,s+rlen,max-rlen);
  101.     if (ret>0)
  102.       rlen+=ret;
  103.   } while((s[max(rlen-1,0)]=='\\') && (rlen<max));
  104.   return rlen;
  105. }
  106.  
  107. // idem avec les car spΘciaux
  108. void rawlinput(FILE* fp,char* s,int max) {
  109.   int c;
  110.   int j=0;
  111.   do {
  112.     c=fgetc(fp);
  113.     if (c!=EOF) {
  114.       switch(c) {
  115.         case 13: break;  // sauter CR
  116.         case 10: c=-1; break;
  117.         default: s[j++]=(char) c; break;
  118.       }
  119.     }
  120.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  121.   s[j++]='\0';
  122. }
  123.  
  124. // Like linput, but in memory (optimized)
  125. int binput(char* buff,char* s,int max) {
  126.   int count = 0;
  127.   int destCount = 0;
  128.  
  129.   // Note: \0 will return 1
  130.   while(destCount < max && buff[count] != '\0' && buff[count] != '\n') {
  131.     if (buff[count] != '\r') {
  132.       s[destCount++] = buff[count];
  133.     }
  134.         count++;
  135.   }
  136.   s[destCount] = '\0';
  137.  
  138.   // then return the supplemental jump offset
  139.   return count + 1;
  140.  
  141. int fexist(char* s) {
  142.   struct stat st;
  143.   memset(&st, 0, sizeof(st));
  144.   if (stat(s, &st) == 0) {
  145.     if (S_ISREG(st.st_mode)) {
  146.       return 1;
  147.     }
  148.   }
  149.   return 0;
  150.  
  151. INTsys fsize(char* s) {
  152.   FILE* fp;
  153.   fp=fopen(s,"rb");
  154.   if (fp!=NULL) {
  155.     INTsys i;
  156.     fseek(fp,0,SEEK_END);
  157.     i=ftell(fp);
  158.     fclose(fp);
  159.     return i;
  160.   } else return -1;
  161. }
  162.  
  163. TStamp time_local(void) {
  164.   return ((TStamp) time(NULL));
  165. }
  166.  
  167.  
  168.  
  169.  
  170.  
  171. #define NOSTATIC_RESERVE(name, type, nelt) NOSTATIC_XRESERVE(name, type, nelt)
  172. #define NOSTATIC_XRESERVE(name, type, nelt) do { \
  173.   __declspec( thread ) static type thValue[nelt]; \
  174.   __declspec( thread ) int  static initValue = 0; \
  175.   name = thValue; \
  176.   if (!initValue) { \
  177.     initValue = 1; \
  178.     memset(&thValue, 0, sizeof(thValue)); \
  179.   } \
  180. } while(0)
  181.  
  182.  
  183.  
  184. typedef struct concat_strc {
  185.   char buff[16][HTS_URLMAXSIZE*2*2];
  186.   int rol;
  187. } concat_strc;
  188. char* concat(const char* a,const char* b) {
  189.   concat_strc* strc;
  190.   NOSTATIC_RESERVE(strc, concat_strc, 1);
  191.   strc->rol=((strc->rol+1)%16);    // roving pointer
  192.   strcpybuff(strc->buff[strc->rol],a);
  193.   if (b) strcatbuff(strc->buff[strc->rol],b);
  194.   return strc->buff[strc->rol];
  195. }
  196. // conversion fichier / -> antislash
  197. #if HTS_DOSNAME
  198. char* __fconv(char* a) {
  199.   int i;
  200.   for(i=0;i<(int) strlen(a);i++)
  201.     if (a[i]=='/')  // convertir
  202.       a[i]='\\';
  203.   return a;
  204. }
  205. char* fconcat(char* a,char* b) {
  206.   return __fconv(concat(a,b));
  207. }
  208. char* fconv(char* a) {
  209.   return __fconv(concat(a,""));
  210. }
  211. #endif
  212.  
  213. /* / et \\ en / */
  214. char* __fslash(char* a) {
  215.   int i;
  216.   for(i=0;i<(int) strlen(a);i++)
  217.     if (a[i]=='\\')  // convertir
  218.       a[i]='/';
  219.   return a;
  220. }
  221. char* fslash(char* a) {
  222.   return __fslash(concat(a,""));
  223. }
  224.  
  225. // conversion minuscules, avec buffer
  226. char* convtolower(char* a) {
  227.   concat_strc* strc;
  228.   NOSTATIC_RESERVE(strc, concat_strc, 1);
  229.   strc->rol=((strc->rol+1)%16);    // roving pointer
  230.   strcpybuff(strc->buff[strc->rol],a);
  231.   hts_lowcase(strc->buff[strc->rol]);  // lower case
  232.   return strc->buff[strc->rol];
  233. }
  234.  
  235. // conversion en minuscules
  236. void hts_lowcase(char* s) {
  237.   int i;
  238.   for(i=0;i<(int) strlen(s);i++)
  239.     if ((s[i]>='A') && (s[i]<='Z'))
  240.       s[i]+=('a'-'A');
  241. }
  242.  
  243. char* next_token(char* p,int flag) {
  244.   int detect=0;
  245.   int quote=0;
  246.   p--;
  247.   do {
  248.     p++;
  249.     if (flag && (*p=='\\')) {   // sauter \x ou \"
  250.       if (quote) {
  251.         char c='\0';
  252.         if (*(p+1)=='\\')
  253.           c='\\';
  254.         else if (*(p+1)=='"')
  255.           c='"';
  256.         if (c) {
  257.           char* tempo = malloc(strlen(p) + 2 + 2);
  258.           tempo[0]=c; tempo[1]='\0';
  259.           strcatbuff(tempo,p+2);
  260.           strcpybuff(p,tempo);
  261.           free(tempo);
  262.         }
  263.       }
  264.     }
  265.     else if (*p==34) {  // guillemets (de fin)
  266.       char* tempo = malloc(strlen(p) + 2);
  267.       tempo[0]='\0';
  268.       strcatbuff(tempo,p+1);
  269.       strcpybuff(p,tempo);   /* wipe "" */
  270.       p--;
  271.       /* */
  272.       quote=!quote;
  273.       /* */
  274.       free(tempo);
  275.     }
  276.     else if (*p==32) {
  277.       if (!quote)
  278.         detect=1;
  279.     }
  280.     else if (*p=='\0') {
  281.       p=NULL;
  282.       detect=1;
  283.     }
  284.   } while(!detect);
  285.   return p;
  286. }
  287.